home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TINY_WP.ZIP / TWRP.MAK < prev    next >
Encoding:
Text File  |  1989-05-24  |  777 b   |  31 lines

  1. #
  2. #  TWRP.MAK -- make file for TWRP.EXE with Microsoft C/MASM
  3. #
  4.  
  5. .c.obj:
  6.     cl /DCOMPILER=MSOFT -c -W3 -Gs -AC $*.c
  7.  
  8. twrp.obj : twrp.c editor.h help.h window.h
  9.  
  10. editshel.obj : editshel.c editor.h menu.h entry.h help.h \
  11.                 window.h microsft.h
  12.  
  13. editor.obj : editor.c editor.h window.h microsft.h
  14.  
  15. entry.obj : entry.c entry.h window.h microsft.h
  16.  
  17. menu.obj : menu.c menu.h window.h microsft.h
  18.  
  19. help.obj : help.c help.h window.h microsft.h
  20.  
  21. window.obj : window.c window.h microsft.h
  22.  
  23. microsft.obj : microsft.c
  24.  
  25. vpeek.obj : vpeek.asm
  26.     masm /MX vpeek;
  27.  
  28. twrp.exe : twrp.obj editshel.obj editor.obj entry.obj menu.obj help.obj \
  29.         window.obj microsft.obj vpeek.obj
  30.     cl twrp editshel editor entry menu help window microsft vpeek
  31.